home *** CD-ROM | disk | FTP | other *** search
- /* %filename% -- application methods */
- /* Created %date% %time% by AppMaker */
-
- /* This module overrides the AppMaker-generated code in z%Appname%App.% %*/
- /* It provides a place for you to add your own code and still be able to */
- /* generate code for new changes to the user interface. This module will */
- /* not be regenerated by AppMaker unless you delete it. Its superclass, */
- /* z%Appname%App, may be regenerated to handle user interface changes% %*/
- /* without losing your hand-coded changes to this module. */
-
- #include <Commands.h>
- #include "ResourceDefs.h"
- %for each menu gen includeDialogs%
- #include "%Appname%App.h"
-
- extern OSType gSignature;
-
- /*----------*/
- void C%Appname%App::SetUpFileParameters (void)
- {
- inherited::SetUpFileParameters ();
- sfNumTypes = 1;
- sfFileTypes [0] = 'TEXT';
- gSignature = '????';
-
- } /* SetUpFileParameters */
-
- %for each menu gen doItems.override%
- /*----------*/
- void C%Appname%App::DoCommand (long theCommand)
- {
- switch (theCommand) {
- %for each menu gen handleItems%
- default:
- inherited::DoCommand (theCommand);
- break;
- } /* switch */
-
- } /* DoCommand */
-
- /* %filename% */
-